【例子介绍】用c#写的点阵屏和液晶取模工具
用C#写的一个点阵屏液晶汉字取模工具,欢迎大家下载,提出意见,我会尽量改进
【相关图片】
【源码结构】
文件清单
└── 取模工具
├── 取模工具
│ ├── bin
│ │ └── Debug
│ │ ├── HZK12
│ │ ├── Hzk16
│ │ ├── HZK16f
│ │ ├── HZK24F
│ │ ├── HZK24H
│ │ ├── HZK24K
│ │ ├── HZK24S
│ │ ├── Setting.ini
│ │ ├── 仿宋24
│ │ ├── 取模工具.exe
│ │ ├── 取模工具.pdb
│ │ ├── 取模工具.vshost.exe
│ │ ├── 取模工具.vshost.exe.manifest
│ │ ├── 宋体12
│ │ ├── 宋体16
│ │ ├── 宋体24
│ │ ├── 宋粗体16
│ │ ├── 楷体24
│ │ ├── 繁宋16
│ │ └── 黑体24
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ └── Debug
│ │ ├── Refactor
│ │ ├── TempPE
│ │ ├── 取模工具.csproj.FileListAbsolute.txt
│ │ ├── 取模工具.csproj.GenerateResource.Cache
│ │ ├── 取模工具.exe
│ │ ├── 取模工具.Form1.resources
│ │ ├── 取模工具.pdb
│ │ ├── 取模工具.Properties.Resources.resources
│ │ ├── 取模工具.关于软件.resources
│ │ └── 报告信息.ReportInformation.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ReportInformation.cs
│ ├── ReportInformation.Designer.cs
│ ├── ReportInformation.resx
│ ├── 关于软件.cs
│ ├── 关于软件.Designer.cs
│ ├── 关于软件.resx
│ └── 取模工具.csproj
├── 取模工具.sln
└── 取模工具.suo
9 directories, 46 files
评论